home *** CD-ROM | disk | FTP | other *** search
/ Visual Cafe 3 / Visual Cafe 3.ISO / Vcafe / JFC.bin / MotifBorderFactory.java < prev    next >
Text File  |  1998-06-30  |  10KB  |  363 lines

  1. /*
  2.  * @(#)MotifBorderFactory.java    1.17 98/02/02
  3.  * 
  4.  * Copyright (c) 1997 Sun Microsystems, Inc. All Rights Reserved.
  5.  * 
  6.  * This software is the confidential and proprietary information of Sun
  7.  * Microsystems, Inc. ("Confidential Information").  You shall not
  8.  * disclose such Confidential Information and shall use it only in
  9.  * accordance with the terms of the license agreement you entered into
  10.  * with Sun.
  11.  * 
  12.  * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE
  13.  * SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  14.  * IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
  15.  * PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR ANY DAMAGES
  16.  * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING
  17.  * THIS SOFTWARE OR ITS DERIVATIVES.
  18.  * 
  19.  */
  20.  
  21. package com.sun.java.swing.plaf.motif;
  22.  
  23. import com.sun.java.swing.*;
  24. import com.sun.java.swing.border.*;
  25. import com.sun.java.swing.plaf.*;
  26. import com.sun.java.swing.plaf.basic.BasicFieldBorder;
  27.  
  28. import java.awt.Component;
  29. import java.awt.Insets;
  30. import java.awt.Dimension;
  31. import java.awt.Color;
  32. import java.awt.Graphics;
  33. import java.io.Serializable;
  34.  
  35. /**
  36.  * Factory object that can vend Icons appropriate for the basic L & F.
  37.  * <p>
  38.  * Warning: serialized objects of this class will not be compatible with
  39.  * future swing releases.  The current serialization support is appropriate
  40.  * for short term storage or RMI between Swing1.0 applications.  It will
  41.  * not be possible to load serialized Swing1.0 objects with future releases
  42.  * of Swing.  The JDK1.2 release of Swing will be the compatibility
  43.  * baseline for the serialized form of Swing objects.
  44.  *
  45.  * @version 1.17 02/02/98
  46.  * @author Amy Fowler
  47.  */
  48. public class MotifBorderFactory implements Serializable
  49. {
  50.     private static Border loweredBevelBorder;
  51.     private static Border raisedBevelBorder;
  52.     private static Border buttonBorder;
  53.     private static Border toggleButtonBorder;
  54.     private static Border focusBorder;
  55.     private static Border fieldBorder;
  56.     private static Border menuBarBorder;
  57.  
  58.  
  59.     public static Border getLoweredBevelBorder() {
  60.     if (loweredBevelBorder == null) {
  61.         loweredBevelBorder = new BevelBorder(false);
  62.     }
  63.     return loweredBevelBorder;
  64.     }
  65.  
  66.     public static Border getRaisedBevelBorder() {
  67.     if (raisedBevelBorder == null) {
  68.         raisedBevelBorder = new BevelBorder(true);
  69.     }
  70.     return raisedBevelBorder;
  71.     }
  72.  
  73.     public static Border getButtonBorder() {
  74.        if (buttonBorder == null){
  75.        buttonBorder = new ButtonBorder();
  76.        }
  77.        return buttonBorder;
  78.     }
  79.  
  80.     public static Border getFocusBorder() {
  81.        if (focusBorder == null){
  82.        focusBorder = new FocusBorder();
  83.        }
  84.        return focusBorder;
  85.     }
  86.  
  87.     public static Border getFieldBorder() {
  88.        if (fieldBorder == null){
  89.        fieldBorder = new FieldBorder();
  90.        }
  91.        return fieldBorder;
  92.     }
  93.  
  94.     public static Border getToggleButtonBorder() {
  95.        if (toggleButtonBorder == null){
  96.        toggleButtonBorder = new ToggleButtonBorder();
  97.        }
  98.        return toggleButtonBorder;
  99.     }
  100.  
  101.     public static Border getMenuBarBorder(){
  102.       if (menuBarBorder == null){
  103.        menuBarBorder = new MenuBarBorder();
  104.       }
  105.       return menuBarBorder;
  106.     }
  107.  
  108.  
  109.     private static class BevelBorder extends AbstractBorder implements UIResource, Serializable
  110.     {
  111.     private Color darkShadow = UIManager.getColor("controlShadow");
  112.     private Color lightShadow = UIManager.getColor("controlLtHighlight");
  113.     private boolean isRaised;
  114.  
  115.     public BevelBorder(boolean isRaised) {
  116.         this.isRaised = isRaised;
  117.     }
  118.  
  119.     public void paintBorder(Component c, Graphics g, int x, int y, int w, int h) {
  120.         g.setColor((isRaised) ? lightShadow : darkShadow);
  121.         g.drawLine(x, y, x+w-1, y);           // top
  122.         g.drawLine(x, y+h-1, x, y+1);         // left
  123.  
  124.         g.setColor((isRaised) ? darkShadow : lightShadow);
  125.         g.drawLine(x+1, y+h-1, x+w-1, y+h-1); // bottom
  126.         g.drawLine(x+w-1, y+h-1, x+w-1, y+1); // right
  127.     }
  128.  
  129.     public Insets getBorderInsets(Component c) { 
  130.         return new Insets(1, 1, 1, 1);
  131.     }
  132.  
  133.     public boolean isOpaque(Component c) { 
  134.         return true;
  135.     }
  136.  
  137.     }
  138.  
  139.  
  140.     private static class FocusBorder extends AbstractBorder implements UIResource, Serializable
  141.     {
  142.         private Color controlFocus;
  143.     private Color control;
  144.  
  145.     public FocusBorder() {
  146.     }
  147.  
  148.     public void paintBorder(Component c, Graphics g, int x, int y, int w, int h) {
  149.         if (((JComponent)c).hasFocus()) {
  150.                 if(controlFocus == null)
  151.                     controlFocus = UIManager.getColor("activeCaptionBorder");
  152.             g.setColor(controlFocus); 
  153.         g.drawRect(x, y, w-1, h-1);
  154.         } else {
  155.                 if(control == null)
  156.                     control = UIManager.getColor("control");
  157.         g.setColor(control);
  158.         g.drawRect(x, y, w-1, h-1);
  159.         }
  160.     }
  161.  
  162.     public Insets getBorderInsets(Component c) { 
  163.         return new Insets(1,1,1,1);
  164.     }
  165.  
  166.     final static Insets insets = new Insets(1, 1, 1, 1);
  167.     }
  168.  
  169.     private static class MarginBorder extends AbstractBorder implements UIResource, Serializable
  170.     {
  171.     
  172.     MarginBorder(Insets i) {
  173.         this.i = i;
  174.     }
  175.  
  176.     public Insets getBorderInsets(Component c) { 
  177.         return i;
  178.     }
  179.  
  180.     private Insets i;
  181.     }
  182.  
  183.     private static class FieldBorder extends CompoundBorder implements UIResource, Serializable
  184. {
  185.  
  186.     public FieldBorder() {
  187.         super(getFocusBorder(), new CompoundBorder(getLoweredBevelBorder(),
  188.                                new MarginBorder(new Insets(3, 3, 3, 3))));
  189.     }
  190.  
  191. /*
  192.     public boolean isOpaque(Component c) { 
  193.         return true;
  194.     }
  195.     */
  196.     }
  197.  
  198.   static class ButtonBorder extends AbstractBorder implements UIResource, Serializable
  199.   {
  200.     final static Insets insets = new Insets(7, 7, 8, 8);
  201.  
  202.     private Color disabled = UIManager.getColor("controlDisabled");
  203.     private Color controlFocus = UIManager.getColor("activeCaptionBorder");
  204.     private Color controlShadow = UIManager.getColor("controlShadow");
  205.     private Color lightShadow = UIManager.getColor("controlLtHighlight");
  206.     private Color controlHighlight = UIManager.getColor("controlHighlight");
  207.     private Color ltHighlight = UIManager.getColor("controlLtHightlight");
  208.       
  209.     public void paintBorder(Component c, Graphics g, int x, int y, int w, int h) {
  210.       boolean isPressed = false;
  211.       boolean hasFocus = false;
  212.       boolean isDefault = false;
  213.  
  214.       if (c instanceof AbstractButton) {
  215.     AbstractButton b = (AbstractButton)c;
  216.     ButtonModel model = b.getModel();
  217.  
  218.     isPressed = (model.isArmed() && model.isPressed());
  219.     hasFocus = (model.isArmed() && isPressed) || 
  220.       (b.isFocusPainted() && b.hasFocus());
  221.         if (b instanceof JButton) {
  222.             isDefault = ((JButton)b).isDefaultButton();
  223.         }
  224.       }    
  225.       if (isDefault) {
  226.           if (hasFocus) {
  227.               g.setColor(controlFocus);
  228.               g.drawRect(x, y, w-1, h-1);
  229.               hasFocus = false; // already drew focus
  230.           }
  231.           g.setColor(controlShadow);         
  232.           g.drawRect(x+3, x+3, w-7, h-7);
  233.       
  234.           g.setColor(controlHighlight);    
  235.           g.drawLine(x+4, y+h-4, x+w-4, y+h-4);
  236.           g.drawLine(x+w-4, y+3, x+w-4, y+h-4);
  237.       }          
  238.       drawBezel(g, x+6, y+6, w-11, h-11, isPressed, hasFocus); 
  239.           
  240.     }
  241.     
  242.     public Insets getBorderInsets(Component c)
  243.     {
  244.       return insets;
  245.     }
  246.  
  247.   }
  248.  
  249.   private static class ToggleButtonBorder extends AbstractBorder implements UIResource, Serializable
  250.   {
  251.     final static Insets insets = new Insets(2, 2, 3, 3);
  252.  
  253.     public void paintBorder(Component c, Graphics g, int x, int y, 
  254.                 int width, int height) 
  255.       {
  256.     if (c instanceof AbstractButton) 
  257.       {
  258.         AbstractButton b = (AbstractButton)c;
  259.         ButtonModel model = b.getModel();
  260.  
  261.         if (model.isArmed() && model.isPressed() || model.isSelected()) 
  262.           {
  263.         drawBezel(g, x, y, width, height,
  264.               (model.isPressed() || model.isSelected()),
  265.               b.hasFocus());
  266.           } else 
  267.         {
  268.           drawBezel(g, x, y, width, height, 
  269.                 false, b.isFocusPainted() && b.hasFocus());
  270.                 }
  271.       } else 
  272.         {    
  273.           drawBezel(g, x, y, width, height, false, false);
  274.             }
  275.       }
  276.  
  277.     public Insets getBorderInsets(Component c)
  278.       {
  279.     return insets;
  280.       }
  281.   }
  282.  
  283.   private static class MenuBarBorder extends AbstractBorder implements UIResource, Serializable
  284.   {
  285.     public void paintBorder(Component c, Graphics g, int x, int y, int width, int height) {
  286.       JMenuBar menuBar = (JMenuBar)c;
  287.       if (menuBar.isBorderPainted() == true)
  288.     {
  289.       // this draws the MenuBar border
  290.       Dimension size = menuBar.getSize();
  291.       drawBezel(g,x,y,size.width,size.height,false,false);
  292.     }
  293.     }
  294.  
  295.     public Insets getBorderInsets(Component c)       {
  296.       return new Insets(6,6,6,6);
  297.     }
  298.   }
  299.  
  300.  
  301.  
  302.   public static void drawBezel(Graphics g, int x, int y, int w, int h, 
  303.                    boolean isPressed, boolean hasFocus)  {      
  304.  
  305.     Color disabled = UIManager.getColor("controlDisabled");
  306.     Color controlFocus = UIManager.getColor("activeCaptionBorder");
  307.     Color controlShadow = UIManager.getColor("controlShadow");
  308.     Color controlDkShadow = UIManager.getColor("controlDkShadow");
  309.     Color lightShadow = UIManager.getColor("controlLtHighlight");
  310.     Color controlHighlight = UIManager.getColor("controlHighlight");
  311.  
  312.     Color oldColor = g.getColor();    
  313.     g.translate(x, y);
  314.  
  315.     if (isPressed) {
  316.       if (hasFocus){  
  317.     g.setColor(controlFocus);
  318.     g.drawRect(0, 0, w-1, h-1);
  319.       }      
  320.       g.setColor(controlShadow);         // inner border
  321.       g.drawRect(1, 1, w-3, h-3);
  322.       
  323.       g.setColor(controlHighlight);    // inner 3D border
  324.       g.drawLine(2, h-3, w-3, h-3);
  325.       g.drawLine(w-3, 2, w-3, h-4);
  326.       
  327.     } else {
  328.       if (hasFocus) {
  329.     g.setColor(controlFocus);
  330.     g.drawRect(0, 0, w-1, h-1);
  331.     
  332.     g.setColor(controlHighlight);   // inner 3D border
  333.     g.drawLine(1, 1, 1, h-3);
  334.     g.drawLine(2, 1, w-4, 1);
  335.     
  336.     g.setColor(controlShadow);     
  337.     g.drawLine(2, h-3, w-3, h-3);
  338.     g.drawLine(w-3, 1, w-3, h-4);
  339.     
  340.     g.setColor(controlDkShadow);        // black drop shadow  __|
  341.     g.drawLine(1, h-2, w-2, h-2);
  342.     g.drawLine(w-2, h-2, w-2, 1);
  343.       } else {
  344.     g.setColor(controlHighlight);    // inner 3D border
  345.     g.drawLine(1,1,1,h-3);
  346.     g.drawLine(2,1,w-4,1);
  347.     g.setColor(controlShadow);
  348.     g.drawLine(2,h-3,w-3,h-3);
  349.     g.drawLine(w-3,1,w-3,h-4);
  350.     
  351.     g.setColor(controlDkShadow);         // black drop shadow  __|
  352.     g.drawLine(1,h-2,w-2,h-2);
  353.     g.drawLine(w-2,h-2,w-2,0);
  354.     
  355.       }
  356.       g.translate(-x, -y);
  357.     }
  358.     g.setColor(oldColor);
  359.   }
  360.  
  361.  
  362. }
  363.